home *** CD-ROM | disk | FTP | other *** search
XSetup plugin | 2004-01-30 | 1.3 KB | 51 lines |
- "FILE"="Xteq Systems X-Setup Plugin 6.0"
- "TYPE"="6"
- "COUNT"="1"
- "UIPATH 1"="Program Options\Microsoft Office\MS Office 2003\Open/Save Dialog\Places Bar"
- "NAME"="Small Icons"
- "VERSION"="1.04"
- "LANGUAGE"="VBScript"
- "TEXT 1"="Use small icons in places bar"
- "DESCRIPTION 1"="The default icon size for the Microsoft Office places bar is large."
- "DESCRIPTION 2"="Check this box to use small icons."
- "DESCRIPTION 3"="Clear this box to use large icons."
- "AUTHOR"="Donald R. Shroyer, Esq. (patched by Xteq Systems)"
- "CONTACTURL"="http://www.lscrs.com"
- "COPYRIGHT"="Copyright ⌐ 2002 Donald R. Shroyer / 2004 Xteq Systems"
- "COMMENT 1"=""
-
-
- MSO2KOFPIS="HKCU\Software\Microsoft\Office\11.0\Common\Open Find\Places\ItemSize"
- MSO2K="HKCU\Software\Microsoft\Office\11.0\"
-
- Sub Plugin_Initialize
- if RegPathExists(MSO2K) then
- i=RegReadValue(MSO2KOFPIS)
- if i=1 or IsEmpty(i) then
- SetUIElement 1,false
- else
- SetUIElement 1,true
- end if
- else
- Call Disable()
- end if
- End Sub
-
- Sub Plugin_CheckData(ElementIndex)
- End Sub
-
- Sub Plugin_Apply(ElementIndex,ElementSubIndex)
- b=GetUIElement(1)
- if b=true then
- Call RegWriteValue(MSO2KOFPIS,0,2)
- else
- Call RegWriteValue(MSO2KOFPIS,1,2)
- end if
- End Sub
-
- Sub Plugin_Terminate
- End Sub
-
-
-
-